body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  background: linear-gradient(to bottom right, #b22222, #8b0000);
  color: white;
  position: relative;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ideology-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.ideology-figure img {
  display: block;
  margin: 0;
  width: clamp(220px, 45vw, 420px);
  height: auto;
}

.hero h1 {
  font-size: clamp(1.4rem, 5.5vw, 2.5rem);
  line-height: 1.12;
  margin-top: 0.6rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #111;
  font-family: Helvetica, Arial, sans-serif;
}

.btn {
  background-color: #e53935;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: transform 0.2s, background 0.3s;
}

.btn:hover {
  background-color: #c62828;
  transform: scale(1.05);
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  margin-top: 1.35rem;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.instagram-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.email-icon {
  background: #fff;
  border: none;
  color: #ea4335;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.24);
}

.instagram-icon:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  filter: brightness(1.06);
}

.email-icon:hover {
  background: #fff5f5;
}

.ideology-ui {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #fdf7f2, #f5f5f5);
}

.ideology-ui h2 {
  margin-top: 0.2rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #8b0000;
  font-family: Helvetica, Arial, sans-serif;
}

.concepts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.concept {
  border-radius: 50%;
  padding: 1.5rem;
  min-width: 140px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 0.95rem;
  color: #3a3a3a;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.3;
}

.concept:nth-child(1) { background: linear-gradient(135deg, #fff4f4, #fff); }
.concept:nth-child(2) { background: linear-gradient(135deg, #ffe1e1, #fff); }
.concept:nth-child(3) { background: linear-gradient(135deg, #ffcaca, #fff); }
.concept:nth-child(4) { background: linear-gradient(135deg, #ffb3b3, #fff); }
.concept:nth-child(5) {
  background: linear-gradient(135deg, #ff9999, #fff);
  color: #b22222;
  font-size: 1rem;
  border: 2px solid #b22222;
}

.concept:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.updates-section {
  background: #f5f5f5;
  padding: 2.2rem 0 2rem;
  position: relative;
}

.updates-section::before {
  content: "";
  display: block;
  width: min(1300px, 95vw);
  margin: 0 auto 1.9rem;
  border-top: 4px solid #1f1f1f;
}

.updates-section h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 auto 2rem;
  color: #8b0000;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
}

.updates-grid {
  width: min(1300px, 95vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  background: #fff;
}

.news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-link.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.news-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.news-content {
  padding: 0.9rem 0.9rem 1.1rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #888;
}

.news-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.1vw, 2.35rem);
  line-height: 1.08;
  color: #111;
}

.news-card:not(.featured) .news-title {
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
}

.news-excerpt {
  margin: 0.9rem 0 0;
  font-size: clamp(0.95rem, 1.05vw, 1.15rem);
  line-height: 1.55;
  color: #2e2e2e;
}

.news-card:not(.featured) .news-excerpt {
  font-size: 0.98rem;
}

.contact-email {
  color: #000;
  font-size: 1.35rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
  text-align: center;
}

.footer {
  background: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: auto;
}

@media (max-width: 1280px) {
  .updates-section::before,
  .updates-grid {
    width: min(1180px, 96vw);
  }
}

@media (max-width: 1024px) {
  .updates-section {
    padding: 2.5rem 0 2rem;
  }

  .updates-section h2 {
    margin-bottom: 1.3rem;
  }

  .updates-section::before {
    width: min(920px, 96vw);
    margin-bottom: 1.6rem;
  }

  .updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(920px, 96vw);
    gap: 0.8rem;
  }

  .news-link.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .news-title {
    font-size: 1.7rem;
  }

  .news-card:not(.featured) .news-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  .updates-section {
    padding: 1.8rem 0 1.6rem;
  }

  .updates-section::before {
    width: min(620px, 95vw);
    margin-bottom: 1.35rem;
  }

  .updates-grid {
    grid-template-columns: 1fr;
    width: min(620px, 95vw);
    gap: 0.7rem;
  }

  .news-link {
    border-right: none;
  }

  .news-content {
    padding: 0.85rem 0.8rem 1rem;
  }

  .news-meta {
    font-size: 0.75rem;
  }

  .news-title,
  .news-card:not(.featured) .news-title {
    font-size: clamp(1.35rem, 5.4vw, 1.7rem);
  }

  .news-excerpt {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .contact-email {
    font-size: 1.05rem;
    margin: 1.4rem 0 0.8rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-inline: 0.75rem;
  }

  .concept {
    min-width: 120px;
    min-height: 120px;
    font-size: 0.85rem;
    padding: 1.2rem;
  }

  .ideology-ui {
    padding: 2.7rem 0.65rem;
  }

  .ideology-ui h2 {
    font-size: 1.62rem;
  }

  .concepts {
    gap: 0.95rem;
  }

  .ideology-figure img {
    width: 86%;
    max-width: 380px;
    height: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.12;
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
    padding-inline: 0.5rem;
  }

  .hero-social {
    margin-top: 1rem;
    gap: 0.9rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .updates-section::before,
  .updates-grid {
    width: 94vw;
  }

  .news-card {
    min-height: unset;
  }

  .news-content {
    padding: 0.7rem 0.65rem 0.9rem;
  }

  .news-title,
  .news-card:not(.featured) .news-title {
    font-size: 1.23rem;
    line-height: 1.16;
  }

  .news-excerpt {
    margin-top: 0.62rem;
    font-size: 0.92rem;
  }

  .contact-email {
    font-size: 0.96rem;
  }
}
